home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmToolbar
- BackColor = &H00C0C0C0&
- BorderStyle = 1 'Fixed Single
- Caption = "Tool Bar"
- ClientHeight = 3930
- ClientLeft = 6225
- ClientTop = 4080
- ClientWidth = 810
- ControlBox = 0 'False
- Height = 4335
- Icon = FLOATOOL.FRX:0000
- Left = 6165
- LinkTopic = "Form2"
- MaxButton = 0 'False
- ScaleHeight = 3930
- ScaleWidth = 810
- Top = 3735
- Width = 930
- Begin CommandButton cmdExit
- BackColor = &H00C0C0C0&
- Caption = "E&xit"
- Height = 315
- Left = 60
- TabIndex = 0
- Top = 1800
- Width = 675
- End
- DefInt A-Z
- Declare Sub SetWindowWord Lib "user" (ByVal hWnd, ByVal ncmd, ByVal nval)
- Const SWW_hParent = -8
- Sub cmdExit_Click ()
- Unload frmToolbar
- End Sub
- Sub Form_Load ()
- SetWindowWord hWnd, SWW_hParent, form1.hWnd
- End Sub
- Sub Form_Unload (Cancel As Integer)
- SetWindowWord hWnd, SWW_hParent, 0
- End Sub
-